smooth scroll button by element id

110

smooth scroll button by element id -

html {
  scroll-behavior: smooth;
}

smooth scroll button by element id -

$('#myButton').click(function() {
   $.scrollTo($('#myDiv'), 1000);
});

smooth scroll button by element id -

$('#myButton').click(function(event) {
     event.preventDefault();
   $.scrollTo($('#myDiv'), 1000);
});

Comments

Submit
0 Comments